梦入琼楼寒有月,行过石树冻无烟

CSS 滚动栏

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*滚动条*/
body {
overflow-y: scroll;
overflow-x: visible;
}

/*滚动条整体部分*/
::-webkit-scrollbar {
width: 14px;
height: 14px;
}

::-webkit-scrollbar-track,

/*滑块*/
::-webkit-scrollbar-thumb {
border-radius: 999px;
border: 5px solid transparent;
}

/*外层轨道*/
::-webkit-scrollbar-track {
box-shadow: 0px 0px 0px rgba(0,0,0,.2) inset;
}

/*滑块*/
::-webkit-scrollbar-thumb {
min-height: 20px;
background-clip: content-box;
box-shadow: 0 0 0 5px #f0f0f0 inset;
}

/*边角*/
::-webkit-scrollbar-corner {
background: transparent;
}
ID DA FA
scrollbar 滚动条整体部分 webkit
resizer 右下拖动快
button 两端的按钮 webkit-scrollbar
thumb 滑块
corner 边角
track 外层轨道 webkit-scrollbar-track
piece 内层轨道
⬅️ Go back